home *** CD-ROM | disk | FTP | other *** search
- #if !defined(_POLI_N_H)
- #define _POLI_N_H
-
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
-
-
- int __declspec(dllexport) __stdcall MaxOfFactors();
- int __declspec(dllexport) __stdcall Prepare (double fMinU, double fMaxU, double fMinV, double fMaxV,
- double *pfU, double *pfV, double *pfW, int nPoints,
- double *pfParams , int nParams ,
- double *pfFactors, int nFactors);
-
- double __declspec(dllexport) __stdcall CalcInPoint(double fU, double *pfFactors, int nFactors);
- int __declspec(dllexport) __stdcall FunctionTitle (LPTSTR pstr, int nMaxLength);
- int __declspec(dllexport) __stdcall FunctionName (LPTSTR pstr, int nMaxLength);
- int __declspec(dllexport) __stdcall FunctionString(double *pfFactors, int nFactors,
- LPTSTR pstr, int nMaxLength);
- int __declspec(dllexport) __stdcall ParamInfo(int nParam, LPTSTR pstr, int nMaxLength, double *pfDefault);
-
-
-
-
- double CalcError(double *pfU, double *pfV, int nPoints,
- double *pfFactors, int nFactors);
- #endif